@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');






.navbar-brand {
    color: #fff;
    cursor: pointer;
	position: relative;
	right: -20px;
}


header{
	position: fixed;
	top:0; left: 0; right:0;
	background: #000;
	box-shadow: 0 5px 10px rgba(0,0,0,.1);
	padding: 20px 7%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1000;
}

header .navbar ul li{
	position: relative;
	float: left;
	
	
}

header .navbar ul li a{
	display: inline-block;
  font-size: 20px;
	padding:20px;
	color: #fff;
	
	
}





#menu-bar{
	display: none;
}

header label{
	font-size: 20px;
	color: #fff;
	cursor: pointer;
	display: none;
	
}

header .navbar ul li span{
  font-weight: 100;
}



@media(max-width:991px){
	header{
		padding:20px;
	}
	
	header label{
	display: initial;
}

header .navbar{
	position: absolute;
	top:100%; left:0; right:0;
	background: #000;
	border-top: 1px solid rgba(0,0,0,.1);
	display:none;
}

header .navbar ul li{
	width:100%;
}



#menu-bar:checked ~ .navbar{
	display: initial;
}


}












body{
	background-color: black;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}



.container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 40px 20px 0 20px;
  padding-top: 75px;
}

.container .heading{
  width: 50%;
  padding-bottom: 50px;
}
.container .heading h3{
  font-size: 3em;
  color: white;
  font-weight: bolder;
  padding-bottom: 10px;
  border-bottom: 3px solid white;
}

.container .heading h3 span{
  font-weight: 100;
}
.container .box{
 display: flex;
 flex-direction: row;
 justify-content: space-between;
}

.container .box .dream{
  display: flex;
  flex-direction: column;
  width: 32.5%;
}

.container .box .dream img{
  width: 100%;
  padding-bottom: 15px;
  border-radius: 5px;
}

.container .btn{
  margin: 40px 0 70px 0;
  background: #222;
  padding: 15px 40px ;
  border-radius: 5px;
}

.container .btn a{
 color: #fff;
 font-size: 1.2em;
 text-decoration: none;
 font-weight: bolder;
 letter-spacing: 3px;
}

@media only screen and (max-width: 769px){
    .container .box{
   flex-direction: column;
  }

.container .box .dream{
  width: 100%;
}





}

@media only screen and (max-width: 643px){
.container .heading{
  width: 100%;
}
.container .heading h3{
  font-size: 1em;

}







}